home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-05-01 | 1.5 KB | 66 lines | [TEXT/MPS ] |
- /*
- File: Events.idl
-
- Contains: Event Manager Interfaces.
-
- Version: Technology: System 8
- Release: Universal Interfaces 3.0d3 on Copland DR1
-
- Copyright: © 1984-1996 by Apple Computer, Inc. All rights reserved.
-
- Bugs?: If you find a problem with this file, send the file and version
- information (from above) and the problem description to:
-
- Internet: apple.bugs@applelink.apple.com
- AppleLink: APPLE.BUGS
-
- */
- #ifndef __EVENTS_IDL__
- #define __EVENTS_IDL__
-
- #include <somobj.idl>
- #include <somcls.idl>
-
- #ifndef __OSUTILS_IDL__
- #include <OSUtils.idl>
- #endif
- #ifndef __QUICKDRAW_IDL__
- #include <Quickdraw.idl>
- #endif
- #ifndef __TYPES_IDL__
- #include <Types.idl>
- #endif
-
- #ifdef __SOMIDL__
-
- typedef UInt16 EventKind;
-
- typedef UInt16 EventMask;
-
- typedef UInt16 EventModifiers;
-
- typedef SOMLargeStruct EventRecord; /* Derived from a struct of 16 bytes in size */
-
- typedef OpaquePtr KeyMap; /* Substituted OpaquePtr for array of UInt32 of size 4 */
-
- #if FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE
- typedef OpaquePtr FKEYProcPtr;
- typedef OpaquePtr FKEYUPP;
- #endif
- #if FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED
- /* Obsolete event types & masks */
- typedef SOMLargeStruct EvQEl; /* Derived from a struct of 22 bytes in size */
-
- typedef OpaquePtr EvQElPtr; /* Substituted OpaquePtr for “EvQEl*” */
-
- typedef OpaquePtr GetNextEventFilterProcPtr;
- typedef OpaquePtr GetNextEventFilterUPP;
- typedef GetNextEventFilterUPP GNEFilterUPP;
-
- #endif
-
- #endif /* __SOMIDL__ */
-
- #endif /* __EVENTS_IDL__ */
-
-